home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-03-05 | 839 b | 35 lines | [TEXT/MPS ] |
- Program Plot;
-
- USES
- { • MacApp }
- UMacApp,
-
- { • Building Blocks }
- UDialog, UPrinting,
-
- { • Implementation Use }
- SANE, ToolUtils, Fonts, Resources, Script, PickerIntf, Packages,
-
- { • the PlotUNIT }
- UPlot;
-
- VAR
- gPlotApplication: TPlotApplication; {The application object:}
-
-
- {--------------------------------------------------------------------------------------------------}
- { T H E M A I N P R O G R A M }
-
- BEGIN
-
- InitUMacApp(8); {Initialize the Toolbox, making 8 calls to
- MoreMasters:}
- InitPrinting; {Initialize the UPrinting unit:}
-
- NEW(gPlotApplication); {Allocate a new TPlotApplication object:}
- FailNIL(gPlotApplication);
- gPlotApplication.IPlotApplication(kFileType); {Initialize that new object:}
-
- gPlotApplication.Run; {Run the application. When it's done, exit.}
- END.
-